/* Reset basic margins */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header{background-image: url(../Images/dollar-5239575_1280.png);  background-repeat: no-repeat; background-size: 90vw; height: 40vh;}

/* Navigation */
nav {
  background-color: #050D41;
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  color: #939FF5;
  text-decoration: none;
  font-weight: bold;
}
.nav-list a:hover {
  text-decoration: underline;
}


/* Navigation Dropdown Styling */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #050D41;
  min-width: 150px;
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #939FF5;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: #c3c9f5;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.header_text{
    color: #c3c9f5;
    text-align: center;
    margin-top: 10vh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* Section styling */
.section {
  padding: 40px 20px;
}

/* About Section Layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#about-section{height: 60vh; background-color: #1127C4; color: #939FF5;}


.contact-section{height: 60vh;}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
.about-text {
  flex: 1;
  min-width: 250px;
  padding: 50px;
}

/* Contact Section */
.contact-info {
  margin-bottom: 20px;
}
.map-container iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}
.footer-col h4 {
  margin-bottom: 10px;
}
.footer-col a {
  color: #ccc; /* Ensures sufficient contrast on #222 background */
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.footer-col a:hover {
  color: #fff; /* Even higher contrast for hover state */
}

.footer-col a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a i:hover {
  color: #ccc;
}

.footer-social_icon col{
  text-align: center; padding: 20px;
}

.social_icon span a{
  display: inline-block;
}

.social_icon span a i{
  font-size: 30px; margin: 10px; color: #ccc;
  transition: color 0.3s ease;
}
.social_icon span a i:hover{
  color: #fff;
}
/* Style rule for table */

table {
    border: 1px solid #373684;
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
}

Caption {
    font-size: 1.5em;
    font-weight: bold;
    padding: 1%;
}

th, td {
    border: 1px solid #373684;
    padding: 2%;
}

th {
   background-color: #373684;
   color: #fff;
   font-size: 1.15em;
}

tr:nth-child(odd) {
    background-color: #b7b7e1;
}

/* Style rules for form elements */
fieldset, input { margin-bottom: 2%;
}

fieldset legend { font-weight: bold; font-size: 1.25em;
}

label { display: block; padding-top: 3%;
}

#submit { margin-top: 0%; margin-bottom: 0%; margin-left: auto; margin-right: auto;
display: block; padding: 3%; background-color: #b7b7e1; font-size: 1em;
border: none; border-radius: 5px; cursor: pointer;
}

.union {
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  border: 5px solid;
  padding: 2rem;

  /* The important extrinsic width */
  width: 320px;
}

.awesome[data-sizing="intrinsic"] {
  width: min-content;
}

.union {
  --flow-space: 2rem;
}

.map {
  border: 5px solid #373684;
  width: 95%;
  height: 50%;
}